home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / library / unlink.c < prev    next >
C/C++ Source or Header  |  1995-09-27  |  3KB  |  100 lines

  1. /*
  2.  *  This file is part of ixemul.library for the Amiga.
  3.  *  Copyright (C) 1991, 1992  Markus M. Wild
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Library General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Library General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Library General Public
  16.  *  License along with this library; if not, write to the Free
  17.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  *
  19.  *  unlink.c,v 1.1.1.1 1994/04/04 04:30:37 amiga Exp
  20.  *
  21.  *  unlink.c,v
  22.  * Revision 1.1.1.1  1994/04/04  04:30:37  amiga
  23.  * Initial CVS check in.
  24.  *
  25.  *  Revision 1.1  1992/05/14  19:55:40  mwild
  26.  *  Initial revision
  27.  *
  28.  */
  29.  
  30. #define KERNEL
  31. #include "ixemul.h"
  32. #include "kprintf.h"
  33.  
  34. #if __GNUC__ != 2
  35. #define alloca __builtin_alloca
  36. #endif
  37.  
  38. static int
  39. __delete_func (struct StandardPacket *sp, struct MsgPort *handler,
  40.                BPTR parent_lock,
  41.            BSTR name,
  42.            void *dummy, int *no_error)
  43. {
  44.   sp->sp_Pkt.dp_Type = ACTION_DELETE_OBJECT;
  45.   sp->sp_Pkt.dp_Arg1 = parent_lock;
  46.   sp->sp_Pkt.dp_Arg2 = name;
  47.  
  48.   PutPacket (handler, sp);
  49.   __wait_sync_packet (sp);
  50.  
  51.   *no_error = sp->sp_Pkt.dp_Res1 == -1;
  52.  
  53.   /* stop if we failed because of symlink - reference */
  54.   return 0;
  55. }
  56.  
  57. int
  58. unlink (char *name)
  59. {
  60.   int err, i;
  61.   struct file **fp;
  62.   int result;
  63.   struct stat st;
  64.  
  65.   result = 0;
  66.  
  67.   if (syscall(SYS_stat, name, &st) == 0 && (st.st_mode & S_IWUSR) == 0)
  68.     chmod(name, st.st_mode | S_IWUSR);
  69.   /* first try to normally delete the file, if we get an
  70.    * 'object in use' error, we'll try another way out.. */
  71.   if (__plock (name, __delete_func, 0)) goto ret;
  72.  
  73.   /* so there was an error.. */
  74.   err = IoErr();
  75.   if (err == ERROR_OBJECT_IN_USE)
  76.     {
  77.       /* check whether the name is an absolute filename, if yes, we
  78.        * can walk thru our filetab to see, whether WE have this file
  79.        * open, and set its unlink-flag, if not, return the error */
  80.  
  81.       /* if we fully and consistent allow Unix-pathnames, we can test
  82.        * for a leading '/' too. */
  83.       if (index(name, ':') || (ix.ix_translate_slash && name[1] && name[0] == '/'))
  84.     {
  85.       for (fp = u.u_ofile, i=0; i < NOFILE; i++, fp++)
  86.         if (*fp && (*fp)->f_name && !strcmp((*fp)->f_name, name))
  87.           {
  88.         (*fp)->f_flags |= FUNLINK;
  89.         goto ret;
  90.           }
  91.     }
  92.     }
  93.   errno = __ioerr_to_errno(err);
  94.   KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  95.   result = -1;
  96.  
  97. ret:
  98.   return result;
  99. }
  100.